8d03197b58204d76db534b418808e5507fef2d7d,test/unit/org/openstreetmap/josm/data/imagery/TemplatedWMSTileSourceTest.java,TemplatedWMSTileSourceTest,verifyTileSquarness,#TemplatedWMSTileSource#number#number#number#,114

Before Change


         * t3 | t4
         */
        EastNorth t1 = proj.latlon2eastNorth(getTileLatLon(source, x, y, z));
        EastNorth t2 = proj.latlon2eastNorth(getTileLatLon(source, x + 1, y, z));
        EastNorth t3 = proj.latlon2eastNorth(getTileLatLon(source, x, y + 1, z));
        EastNorth t4 = proj.latlon2eastNorth(getTileLatLon(source, x + 1, y + 1, z));
        double y_size = Math.abs(t1.getY() - t4.getY());

After Change


         * t3 | t4
         */
        EastNorth t1 = source.getTileEastNorth(x, y, z);
        EastNorth t2 = source.getTileEastNorth(x + 1, y, z);
        EastNorth t3 = source.getTileEastNorth(x, y + 1, z);
        EastNorth t4 = source.getTileEastNorth(x + 1, y + 1, z);
        double y_size = Math.abs(t1.getY() - t4.getY());